home *** CD-ROM | disk | FTP | other *** search
- /* ========================================== */
- /* FINAL WRITER AREXX MACRO */
- /* View_Up - Increase the view magnification */
- /* $VER: View_Up 3.0 (22.7.93) */
- /* ========================================== */
-
- Options Results
-
- Status View
- curview = Result
-
- Select
- WHEN curview = "25" THEN View "50"
- WHEN curview = "50" THEN View "75"
- WHEN curview = "75" THEN View "100"
- WHEN curview = "100" THEN View "125"
- WHEN curview = "125" THEN View "150"
- WHEN curview = "150" THEN View "200"
- WHEN curview = "200" THEN View "400"
- OTHERWISE EXIT
- END
-